home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 May / Software of the Month Club 1996 May.iso / mac / ISO9660 / OS2 / UTILITY / CLOCK / MODULE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-21  |  299 b   |  16 lines  |  [TEXT/hscd]

  1. // Class MODULE: Encapsulates the load/unload logic for a OS/2 resource module.
  2.  
  3. #define INCL_BASE
  4. #include <os2.h>
  5.  
  6. class Module
  7. {
  8.   private:
  9.     HMODULE Handle ;
  10.  
  11.   public:
  12.     Module ( PSZ Name = PSZ("") ) ;
  13.     ~Module ( ) ;
  14.     HMODULE QueryHandle () { return ( Handle ) ; }
  15. } ;
  16.